Exception report - перевод на испанский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Exception report - перевод на испанский

Exception Chaining; Exception wrapping

Exception report      
Informe de excepción
report card         
  • An Ontario secondary school report card
DOCUMENT DISPLAYING A STUDENT'S ACADEMIC PERFORMANCE
Progress report; Report Card; Detailed marks certificate; School report
libreta de calificaciones (de un escolar)
semi-annual statement         
YEARLY REPORT ON A COMPANY OR OTHER ORGANIZATION'S ACTIVITIES
Annual statement; Semi-annual statement; Semiannual statement; Quarterly statement; Quarterly reporting; Semi-annual report; Semiannual report; Year-end report; Yearend report; Year end report; Company report; Annual reports; Yearly reports; Yearly report; Annual Report; Annual profit
declaración semianual (reporte entregado cada seis meses, reporte que trata las actividades dentro de los seis meses)

Определение

report card
(report cards)
1.
A report card is an official written account of how well or how badly a pupil has done during the term or year that has just finished. (AM; in BRIT, use report
)
The only time I got their attention was when I brought home straight A's on my report card.
N-COUNT
2.
A report card is a report on how well a person, organization, or country has been doing recently. (AM JOURNALISM)
The President today issued his final report card on the state of the economy.
N-COUNT

Википедия

Exception chaining

Exception chaining, or exception wrapping, is an object-oriented programming technique of handling exceptions by re-throwing a caught exception after wrapping it inside a new exception. The original exception is saved as a property (such as cause) of the new exception. The idea is that a method should throw exceptions defined at the same abstraction level as the method itself, but without discarding information from the lower levels.

For example, a method to play a movie file might handle exceptions in reading the file by re-throwing them inside an exception of movie playing. The user interface doesn't need to know whether the error occurred during reading chunk of bytes or calling eof(). It needs only the exception message extracted from cause. The user interface layer will have its own set of exceptions. The one interested in cause can see its stack trace during debugging or in proper log.

Throwing the right kind of exceptions is particularly enforced by checked exceptions in the Java programming language, and starting with language version 1.4 almost all exceptions support chaining.

In runtime engine environments such as Java or .NET there exist tools that attach to the runtime engine and every time that an exception of interest occurs they record debugging information that existed in memory at the time the exception was thrown (stack and heap values). These tools are called Exception Interception and they provide "root-cause" information for exceptions in Java programs that run in production, testing, or development environments.